home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / BOOPSI / GI1 / Include / images / led.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-27  |  1003 b   |  42 lines

  1. #ifndef    IMAGES_LED_H
  2. #define    IMAGES_LED_H
  3.  
  4. /*
  5. **    $VER: led.h 42.1 (10.1.94)
  6. **    Includes Release 42.1
  7. **
  8. **    Definitions for the LED BOOPSI image class
  9. **
  10. **    (C) Copyright 1994-1999 Amiga, Inc.
  11. **    All Rights Reserved
  12. */
  13.  
  14. /*****************************************************************************/
  15.  
  16. #ifndef UTILITY_TAGITEM_H
  17. #include <utility/tagitem.h>
  18. #endif
  19.  
  20. /*****************************************************************************/
  21.  
  22. #define LED_Dummy        (TAG_USER+0x04000000)
  23.  
  24. #define    LED_Pairs        (LED_Dummy+1)
  25.     /* (WORD) Number of digit pairs (1-8) */
  26.  
  27. #define    LED_Values        (LED_Dummy+2)
  28.     /* (WORD *) Array of digit pairs.  Must be LED_Pairs in size. */
  29.  
  30. #define    LED_Colon        (LED_Dummy+3)
  31.     /* (BOOL) Colon on or off */
  32.  
  33. #define    LED_Negative        (LED_Dummy+4)
  34.     /* (BOOL) Negative sign on or off */
  35.  
  36. #define    LED_Signed        (LED_Dummy+5)
  37.     /* (BOOL) Leave space for negative sign */
  38.  
  39. /*****************************************************************************/
  40.  
  41. #endif /* IMAGES_LED_H */
  42.